/* Connect Section Styling */
#connect {
    color: #00ffff;
    padding: 80px 20px;
    text-align: center;
    margin-top: 10%;
}

.connect-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(16, 20, 21, 0.8);
    backdrop-filter: sepia(20);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 225, 0.3);
}

/* Title styling */
.connect-title {
    font-size: 3rem;
    margin-bottom: 40px;
    margin-top: 40px;
    text-shadow: 2px 2px 10px rgba(0, 255, 225, 0.5);
}

/* Social Links styling */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1px;
    margin-bottom: 30px;
}

/* Social Button styling */
.social-button {
    color: #00ffff;
    font-size: 1.5rem;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: "Poiret One", sans-serif;
}

.social-button:hover {
    color: #00ffff;
    transform: translateY(-5px);
}

/* Icon styling */
.social-button img {
    filter: brightness(100%) saturate(100%) invert(44%) sepia(100%) saturate(7468%) hue-rotate(167deg) brightness(96%) contrast(97%);
    transition: filter 0.3s ease;
}


.social-button:hover img {
    filter: brightness(0) saturate(100%) invert(44%) sepia(100%) saturate(7468%) hue-rotate(167deg) brightness(96%) contrast(97%);
}

/* Email */
.email {
    font-size: 1.2rem;
    margin-top: 20px;
    color: #00ffff;
}

.email a {
    color: #00ffff;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}


.email a:hover {
    text-decoration: underline;
}
